home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / 4_0 / L_CHSRC_ / ASCII.H < prev    next >
Text File  |  1989-08-26  |  534b  |  22 lines

  1. /********************************************************************************
  2.  * ascii.c
  3.  *
  4.  * ASCII Character Codes
  5.  * 
  6.  * ⌐1989, Motorola Inc.  All Rights Reserved
  7.  ********************************************************************************/
  8.  
  9. #define _H_ascii
  10.  
  11.  
  12. typedef enum {
  13.     asciiNoMark = 0x00, 
  14.     asciiEnter = 0x03,
  15.     asciiHelp = 0x05,
  16.     asciiDelete = 0x08, asciiTab, asciiLineFeed,
  17.     asciiReturn = 0x0D,
  18.     asciiCmdMark = 0x11, asciiCheckMark, asciiDiamond, asciiApple,
  19.     asciiEscape = 0x1B,
  20.     asciiSpace = 0x20
  21. } AsciiCodes;
  22.